@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face{
    font-family: "dBold";
    src: url('../font/din-bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "sBold";
    src: url('../font/SourceHanSansCN-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "sLight";
    src: url('../font/SourceHanSansCN-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* header */
header{
    width: 100%;
    overflow: hidden;
}
.header-main{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
}
.logo{
    width: 215px;
    overflow: hidden;
}
.logo img{
    width: 100%;
}
.nav-ul{
    display: flex;
    width: calc(100% - 215px);
    justify-content: flex-end;
}
.nav-ul li:last-child{
    margin-right: 0px;
}
.nav-ul li>a{
    display: block;
    width: 114px;
    text-align: center;
    text-transform: uppercase;
    line-height: 100px;
    color: #222;
    font-size: 16px;
    transition: all .3s;
}
.nav-ul li:hover>a,
.nav-ul li.nav-active a{
    background-color: #00479d;
    color: #fff;
}
@media(max-width: 1400px){
    .nav-ul li>a{
        width: 100px;
    }
}
@media(max-width: 1200px){
    .nav-ul li>a{
        font-size: 14px;
        width: 80px;
    }
}
@media(max-width: 991px){
    .nav{
        display: none;
    }
    header{
        height: 70px;
    }
    .nav-ul{
        display: none;
    }
    .header-main{
        height: 70px;
    }
}
/* 底部 */
#footer{
    padding-top: 57px;
    overflow: hidden;
    width: 100%;
    background: #313131;
}
.copy{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #808080;
    margin-bottom: 20px;
}
.copy p{
    font-size: 16px;
    line-height: 24px;
}
.links{
    height: 102px;
    display: flex;
    border-top: 1px solid #808080;
    padding-top: 20px;
    color: #808080;
    align-items: flex-start;
}
.links span{
    font-size: 16px;
    line-height: 24px;
}
.links a{
    display: block;
    line-height: 24px;
    padding: 0 6px;
    color: #808080;
    position: relative;
}
.links a::after{
    position: absolute;
    content: "";
    height: 14px;
    background-color: #777;
    width: 2px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.links a:last-child::after{
    display: none;
}
.footer-ul{
    margin-bottom: 46px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.footer-ul li h3{
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}
.footer-ul li dl dd>a{
    line-height: 30px;
    display: block;
    color: #808080;
    font-size: 16px;
}
.footer-ul li dl dd span{
    color: transparent;
}
.code-item{
    margin-top: 8px;
    width: 142px;
    text-align: center;
}
.code-item p{
    color: #808080;
    line-height: 24px;
    margin-top: 10px;
    text-align: center;
}
@media(max-width: 1200px){
    /*
    .links{
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        height: auto;
    }
    .links a{
        line-height: 24px;
    } */
}
@media(max-width: 991px){
    .copy{
        flex-wrap: wrap;
    }
    .copy p{
        width: 100%;
        text-align: center;
        margin-bottom:5px;
    }
    .footer-ul{
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .footer-ul li{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .footer-ul li h3{
        margin-bottom: 10px;
    }
    .footer-ul li dl{
        text-align: center;
    }
    .footer-ul li dl dd{
        display: inline-block;
        margin: 0 4px;
    }
    .code-item{
        margin: auto;
    }
    #footer{
        padding-top: 42px;
    }
    .links{
        padding: 15px 0px;
        height: auto;
        flex-wrap: wrap;
    }
}
/* 首页关于我们 */
.public-module{
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
    width: 100%;
}
.one-aboutmain{
    display: flex;
}
.one-aboutleft{
    width: 50%;
    padding-right: 50px;
}
.one-title{
    font-size: 48px;
    line-height: 48px;
    color: #000;
    margin-bottom: 50px;
}
.oabout-des p{
    font-size: 16px;
    color: #444;
    line-height: 30px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}
.public-more{
    width: 160px;
    height: 50px;
    background-color: #00479d;
    font-size: 16px;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 50px;
    transition: all .5s;
}
.oabout-more{
    margin-top: 92px;
}
.one-aboutright{
    width: 50%;
    padding-left: 50px;
}
.oabout-img{
    position: relative;
}
.play-wrap{
    position: absolute;
    width: 74px;
    height: 74px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/play-icon.png) no-repeat center;
}
.one-aboutright .public-img:hover img{
    transform: scale(1.1);
}
.oabout-more:hover{
    transform: translateY(-5px);
}
@media(max-width: 1600px){
    .oabout-more{
        margin-top: 50px;
    }
}
@media(max-width: 1200px){
    .one-aboutleft{
        padding-right: 20px;
    }
    .one-aboutright{
        padding-left: 20px;
    }
    .one-title{
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .oabout-more{
        margin-top: 40px;
    }
}
@media(max-width: 991px){
    .public-module{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .one-aboutmain{
        flex-wrap: wrap;
    }
    .one-aboutleft{
        padding-right: 0px;
        margin-bottom: 20px;
        width: 100%;
    }
    .one-aboutright{
        width: 100%;
        padding-left: 0px;
    }
    .one-title{
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .oabout-more{
        margin-top: 20px;
    }
}
.one-pro{
    background-color: #f0f0f4;
    padding-bottom: 70px;
}
.one-pro .one-title{
    text-align: center;
    margin-bottom: 38px;
}
.opro-nav{
    margin-bottom: 40px;
}
.opronav-swiper .swiper-slide{
    width: auto!important;
    margin-right: 20px;
}
.opronav-item a{
    padding: 0 25px;
    display: block;
    font-size: 16px;
    color: #444;
    line-height: 43px;
    border: 1px solid #a0a0a0;
}
.opronav-swiper .swiper-wrapper{
    justify-content: center;
}
.opronav-item a:hover,.opronav-on .opronav-item a{
    background-color: #00479d;
    color: #fff;
}
.opro-item{
    margin-bottom: 11px;
}
.opro-item .public-img{
    border: 2px solid #c9c9c9;
}
.opro-item p{
    font-size: 16px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    color: #222222;
}
.opro-item:hover p{
    color: #00479d;
}
.opro-item:hover .public-img img{
    transform: scale(1.1);
}
@media(max-width: 991px){
    .one-pro{
        padding-bottom: 20px;
    }
    .one-pro .one-title{
        margin-bottom: 25px;
    }
    .opronav-item a{
        padding: 0 15px;
    }
    .opro-nav{
        margin-bottom: 25px;
    }
    .opronav-swiper .swiper-slide{
        margin-right: 12px;
    }
    .opro-item{
        margin-bottom: 0px;
    }
    .opronav-swiper .swiper-wrapper{
        justify-content: flex-start;
    }
}
.onew-title{
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    justify-content: space-between;
}
.onew-more{
    display: block;
    width: 140px;
    height: 44px;
    color: #fff;
    line-height: 44px;
    text-align: center;
    background-color: #00479d;
}
.onew-title .one-title{
    margin-bottom: 0px;
}
.onew-main{
    display: flex;
}
.onew-item{
    width: 50%;
}
.onew-main .onew-item:first-child{
    padding-right: 20px;
}
.onew-main .onew-item:last-child{
    padding-left: 20px;
}
.onewleft-item{
    border-bottom: 1px solid #c9c9c9;
    padding-right: 70px;
    padding-top: 16px;
    padding-bottom: 16px;
    width: 100% !important;
}
.onewleft-item h3>a{
    font-size: 18px;
    color: #111;
    font-weight: bold;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.onewleft-item p{
    font-size: 16px;
    color: #444;
    line-height: 24px;
    margin-top: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.onewleft-item:hover h3>a, .onewleft-item.on h3>a{
    color: #00479d;
}
.onewleft-swiper .swiper-slide{
    height: 88px !important;
}
.onewleft-swiper{
    height: 440px;
    overflow: hidden;
}
@media(max-width: 1200px){
    .onewleft-item{
        padding-right: 20px;
    }
}
@media(max-width: 991px){
    .onewleft-item{
        padding-right: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .onew-main{
        flex-wrap: wrap;
    }
    .onew-more{
        width: 120px;
        height: 32px;
        line-height: 32px;
    }
    .onew-title{
        margin-bottom: 30px;
    }
    .onew-item{
        width: 100%;
    }
    .onew-main .onew-item:first-child{
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .onew-main .onew-item:last-child{
        padding-left: 0px;
    }
    .onewleft-swiper .swiper-slide{
        height: 76px !important;
    }
    .onewleft-swiper{
        height: 380px;
        overflow: hidden;
    }
}
.one-case{
    background-color: #f0f0f4;
}
.one-case .one-title{
    text-align: center;
    margin-bottom: 58px;
}


.two-title{
    text-align: center;
    font-size: 48px;
    line-height: 48px;
    color: #000;
}
.tabout-des{
    margin-top: 50px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 32px;
    color: #444;
}
.tabout-list{
    margin-left: -19px;
    margin-right: -19px;
}
.tabout-list li{
    float: left;
    width: 33.33%;
    padding: 0 19px;
}
.tabout-item{
    position: relative;
}
.tabout-item p{
    position: absolute;
    bottom: 18px;
    left: 30px;
    font-size: 24px;
    color: #fff;
    line-height: 24px;
}
.tabout-item:hover .public-img img{
    transform: scale(1.1);
}
@media(max-width: 991px){
    .two-title{
        font-size: 28px;
        line-height: 28px;
    }
    .tabout-des{
        margin-top: 18px;
        margin-bottom: 20px;
    }
    .tabout-list{
        margin-left: 0px;
        margin-right: 0px;
    }
    .tabout-list li{
        float: none;
        margin-bottom: 20px;
        width: 100%;
        padding: 0px;
    }
}
@media(max-width: 449px){
    .tabout-item p{
        font-size: 20px;
        left: 15px;
        bottom: 15px;
    }
}
.twopro-main{
    display: flex;
    justify-content: space-between;
}
.twopro-left{
    width: 296px;
}
.twopro-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 150px;
    background-color: #00479d;
}
.twopro-title h3{
    font-size: 40px;
    line-height: 40px;
}
.twopro-title span{
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    display: block;
    margin-top: 10px;
    font-weight: 300;
}
.tpro-leftul li{
    background-color: #fff;
    border-bottom: 1px solid #b5b5b5;
    padding-left: 40px;
    padding-right: 40px;
    transition: all .5s;
}
.tpro-leftul li a{
    line-height: 64px;
    color: #222;
    font-size: 16px;
    display: block;
    background: url(../img/pro-left-arrow.png) no-repeat right center;
    transition: all .5s;
}
.tpro-leftul li:hover, .tpro-leftul li.on{
    background-color: #00479d;
}
.tpro-leftul li:hover a, .tpro-leftul li.on a{
    color: #fff;
    background-image: url(../img/pro-left-down.png);
}
.twopro-leftbom{
    background-color: #fff;
    padding-top: 42px;
    padding-left: 25px;
    padding-right: 20px;
    padding-bottom: 38px;
}
.twopro-leftbom h3{
    font-size: 30px;
    font-family: "sBold";
    color: #111;
    line-height: 30px;
    letter-spacing: 2px;
    margin-bottom: 22px;
    text-align: center;
}
.twopro-leftbom h3 > span{
    color: #00479d;
}
.twopro-hotline{
    display: flex;
    align-items: center;
    color: #222;
}
.twopro-hotline img{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.twopro-hotlinetxt p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 4px;
}
.twopro-hotlinetxt span{
    font-size: 30px;
    line-height: 30px;
    font-family: "dBold";
}
.twopro-right{
    width: calc(100% - 296px);
    padding-left: 60px;
}
.twopro-item{
    margin-bottom: 24px;
}
.twopro-item p{
    height: 60px;
    text-align: center;
    border: 1px solid #c9c9c9;
    font-size: 16px;
    color: #222;
    line-height: 58px;
    transition: all .5s;
}
.twopro-item .public-img{
    border: 1px solid #c9c9c9;
}
.twopro-item:hover .public-img img{
    transform: scale(1.1);
}
.twopro-item:hover p{
    background-color: #00479d;
    border-color: #00479d;
    color: #fff;
}
@media(max-width: 1200px){
    .twopro-left{
        width: 250px;
    }
    .tpro-leftul li{
        padding-left: 20px;
        padding-right: 20px;
    }
    .twopro-leftbom{
        padding-left: 15px;
        padding-right: 10px;
        padding-top: 18px;
        padding-bottom: 15px;
    }
    .twopro-hotlinetxt span{
        font-size: 24px;
    }
    .twopro-right{
        width: calc(100% - 250px);
        padding-left: 30px;
    }
    .tpro-leftul li a{
        line-height: 48px;
    }
}
@media(max-width: 991px){
    .twopro-main{
        flex-wrap: wrap;
    }
    .twopro-left{
        width: 100%;
    }
    .twopro-title{
        display: flex;
        height: 50px;
        align-items: flex-start;
        padding-left: 20px;
        position: relative;
    }
    .twopro-titletxt{
        height: auto;
        flex-direction: row;
    }
    .twopro-title h3{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 0px;
    }
    .twopro-title span{
        font-size: 14px;
        margin-top: 0px;
        line-height: 18px;
    }
    .twopro-right{
        width: 100%;
        padding-left: 0px;
        margin-top: 30px;
    }
    .twopro-leftbom{
        display: none;
    }
    .tpro-leftul{
        display: none;
    }
    .twopro-item p{
        height: 50px;
        line-height: 48px;
    }
}
.tnew-main{
    margin-top: 58px;
}
.tnew-left{
    width: 50%;
    padding-right: 30px;
}
.tnew-info{
    padding: 28px 30px 0px;
}
.tnew-txt h3>a{
    font-size: 18px;
    line-height: 24px;
    color: #222;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.tnew-txt p{
    font-size: 16px;
    color: #444;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    line-height: 24px;
    height: 48px;
}
.tnew-left:hover .public-img img{
    transform: scale(1.1);
}
.tnew-left:hover .tnew-txt h3>a{
    color: #00479d;
}
.tnew-right{
    width: 50%;
    padding-left: 30px;
}
.tnew-list li{
    padding: 28px 0px;
    display: flex;
    transition: all .5s;
}
.tnew-time{
    width: 134px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tnew-time::after{
    position: absolute;
    width: 1px;
    height: 74px;
    content: "";
    background-color: #999999;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.tnew-time strong{
    font-size: 36px;
    color: #222;
    line-height: 36px;
    display: block;
    margin-bottom: 6px;
    font-weight: normal;
}
.tnew-time span{
    font-size: 16px;
    line-height: 24px;
    color: #444;
}
.tnew-infoother{
    width: calc(100% - 134px);
    padding-left: 30px;
    padding-right: 30px;
}
.tnew-list li:hover{
    background-color: #00479d;
}
.tnew-list li:hover .tnew-time strong{
    color: #fff;
}
.tnew-list li:hover .tnew-time span{
    color: #fff;
}
.tnew-list li:hover .tnew-time::after{
    background-color: #fff;
}
.tnew-list li:hover .tnew-txt h3>a{
    color: #fff;
}
.tnew-list li:hover .tnew-txt p{
    color: #fff;
}
@media(max-width: 1400px){
    .tnew-list li{
        padding: 18px 0px;
    }
    .tnew-time{
        width: 104px;
    }
    .tnew-infoother{
        width: calc(100% - 104px);
    }
}
@media(max-width: 1200px){
    .tnew-left{
        padding-right: 10px;
    }
    .tnew-infoother{
        width: calc(100% - 104px);
        padding-left: 15px;
        padding-right: 10px;
    }
}
@media(max-width: 991px){
    .tnew-main{
        margin-top: 28px;
    }
    .tnew-info{
        padding: 15px 0px 0px;
    }
    .tnew-right{
        width: 100%;
        padding-left: 0px;
    }
    .tnew-left{
        padding-right: 0px;
        width: 100%;
    }
}
@media(max-width: 559px){
    .tnew-time{
        width: 70px;
    }
    .tnew-infoother{
        width: calc(100% - 70px);
    }
    .tnew-list li{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.two-case{
    background-color: #f0f0f4;
    padding-bottom: 75px;
}
.twocase-swiper{
    margin-top: 58px;
}
.twocase-item{
    margin-bottom: 24px;
    position: relative;
}
.tcase-info{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    transition: all .5s;
    background: rgba(0, 71, 157, .5);
    padding: 24px 30px;
    display: flex;
    opacity: 0;
}
.tcase-txt{
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}
.tcase-txt p{
    font-style: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}
.tcase-txt i{
    display: block;
    width: 35px;
    height: 36px;
    background: url(../img/case-icon.png) no-repeat center;
    margin-top: 40px;
}
.twocase-item:hover .tcase-info{
    opacity: 1;
}
@media(max-width: 1400px){
    .tcase-txt i{
        margin-top: 20px;
    }
}
@media(max-width: 991px){
    .tcase-txt i{
        margin-top: 20px;
    }
    .two-case{
        padding-bottom: 20px;
    }
    .twocase-swiper{
        margin-top: 28px;
    }
    .tcase-info{
        padding: 18px 20px;
    }
}
@media(max-width: 559px){
    .two-case{
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* 内页导航 */
.inside-nav{
    background-color: #f0f0f4;
}
.inav-main{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.inav-list{
    display: flex;
}
.inav-list li{
    position: relative;
    margin-right: 75px;
}
.inav-list li:last-child{
    margin-right: 0px;
}
.inav-list li a{
    line-height: 68px;
    font-size: 16px;
    color: #222;
    display: block;
    border-bottom: 2px solid transparent;
}
.inav-list li:hover a, .inav-list li.on a{
    color: #00479d;
    border-bottom-color: #00479d;
}
.inav-right{
    display: flex;
    height: 70px;
    align-items: center;
    padding-left: 20px;
    background: url(../img/pos-icon.png) no-repeat left center;
}
.inav-right a{
    color: #666;
}
.inav-right a:hover{
    color: #00479d;
}
.about-wrap{
    width: 100%;
    overflow: hidden;
    padding-top: 78px;
    padding-bottom: 80px;
}
.inside-title{
    text-align: center;
    margin-bottom: 40px;
    font-size: 48px;
    color: #222;
    line-height: 48px;
}
.about-des{
    color: #444;
    font-size: 16px;
    line-height: 32px;
}
.about-des p{
    margin-bottom: 15px;
    text-indent: 32px;
}
.about-list{
    margin-top: 30px;
}
.about-swiper .public-img:hover img{
    transform: scale(1.1);
}
.culture-wrap{
    background-color: #f0f0f4;
}
.culture-main{
    display: flex;
}
.culture-right{
    width: 50%;
}
.culture-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    padding-left: 115px;
    padding-right: 110px;
}
.culture-item{
    margin-bottom: 25px;
}
.culture-item:last-child{
    margin-bottom: 0px;
}
.culture-item h3{
    font-size: 24px;
    color: #111;
    line-height: 24px;
    margin-bottom: 10px;
}
.culture-item p{
    font-size: 16px;
    color: #444;
    line-height: 24px;
}
.culture-right .public-img:hover img{
    transform: scale(1.1);
}
.vedio-wrap{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.vedio-wrap:hover .public-img img{
    transform: scale(1.1);
}
@media(max-width: 1400px){
    .culture-left{
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media(max-width: 1200px){
    .inav-list li{
        margin-right: 40px;
    }
    .culture-item{
        margin-bottom: 10px;
    }
    .culture-item h3{
        font-size: 20px;
        margin-bottom: 5px;
        line-height: 20px;
    }
}
@media(max-width: 991px){
    .about-wrap{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .inside-title{
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .culture-main{
        flex-wrap: wrap;
    }
    .culture-left{
        width: 100%;
        padding: 20px 30px;
    }
    .culture-right{
        width: 100%;
    }
    .inav-main{
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 10px;
    }
    .inav-right{
        width: 100%;
        height: 30px;
        line-height: 30px;
    }
    .inav-list li{
        margin-right: 20px;
    }
    .inav-list li a{
        line-height: 48px;
    }
    .culture-item h3{
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}
@media(max-width: 449px){
    .culture-left{
        padding-left: 20px;
        padding-right: 20px;
    }
}
.news-wrap{
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.news-main{
    display: flex;
}
.news-leftlist{
    width: 50%;
}
.news-leftitem{
    width: 100%;
    overflow: hidden;
}
.news-lefton{
    display: block;
}
.news-leftitem img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.news-right{
    width: 50%;
    display: flex;
    background-color: #f0f0f4;
}
.news-info{
    width: 100%;
    background-color: #f0f0f4;
    padding-top: 60px;
    padding-left: 35px;
    padding-right: 30px;
}
.news-top{
    padding-bottom: 18px;
    border-bottom: 1px solid #dcdcdc;
}
.news-top h3>a{
    font-size: 24px;
    line-height: 24px;
    display: block;
    color: #222;
    margin-bottom: 15px;
}
.news-time{
    display: flex;
    height: 22px;
    align-items: center;
    color: #999;
    font-size: 16px;
    line-height: 22px;
}
.news-time span{
    padding-left: 6px;
}
.news-des{
    padding-top: 10px;
    font-size: 16px;
    line-height: 32px;
    color: #444;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 52px;
}
.news-more{
    display: block;
    background-color: #00479d;
    text-align: center;
    color: #fff;
    font-size: 16px;
    width: 140px;
    height: 44px;
    line-height: 44px;
}
.news-info:hover .news-top h3>a{
    color: #00479d;
}
.news-swiper .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    border-radius: 4px;
    opacity: 1;
    background-color:#333 !important;
    position: relative;
}
.news-swiper .swiper-pagination-bullet-active{
    width: 30px;
    background-color: #00479d !important;
}
.news-swiper > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 5px;
}
.news-swiper > .swiper-pagination-bullets{
    bottom: 60px;
}
.news-swiper .swiper-pagination{
    text-align: left;
    padding-left: 35px;
}
.news-list li{
    margin-top: 40px;
    background-color: #f0f0f4;
    padding: 28px 0px;
    display: flex;
    transition: all .5s;
}
.news-date{
    width: 158px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.news-date span{
    font-size: 52px;
    display: block;
    line-height: 52px;
    color: #111;
    margin-bottom: 10px;
}
.news-date strong{
    font-weight: normal;
    font-size: 16px;
    color: #444;
    line-height: 24px;
}
.news-date::after{
    position: absolute;
    height: 88px;
    width: 1px;
    background-color: #c9c9c9;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}
.news-listinfo{
    width: calc(100% - 158px);
    padding-left: 45px;
    padding-right: 55px;
}
.news-listinfo h3>a{
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #111;
    margin-bottom: 16px;
    font-weight: bold;
}
.news-listinfo p{
    font-size: 16px;
    line-height: 24px;
    color: #444;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list li:hover{
    background-color: #00479d;
}
.news-list li:hover .news-date strong{
    color: #fff;
}
.news-list li:hover .news-date span{
    color: #fff;
}
.news-list li:hover .news-date::after{
    background-color: #fff;
}
.news-list li:hover .news-listinfo h3>a{
    color: #fff;
}
.news-list li:hover .news-listinfo p{
    color: #fff;
}
@media(max-width: 1400px){
    .news-info{
        padding-top: 40px;
    }
    .news-swiper > .swiper-pagination-bullets{
        bottom: 30px;
    }
}
@media(max-width: 1200px){
    .news-info{
        padding-top: 30px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .news-swiper > .swiper-pagination-bullets{
        bottom: 15px;
    }
    .news-des{
        line-height: 30px;
        margin-bottom: 20px;
    }
    .news-swiper .swiper-pagination{
        padding-left: 25px;
    }
}
@media(max-width: 991px){
    .news-wrap{
        padding-top: 40px;
    }
    .news-main{
        flex-wrap: wrap;
    }
    .news-leftlist{
        width: 100%;
    }
    .news-right{
        width: 100%;
        padding-bottom: 20px;
    }
    .news-swiper{
        padding-bottom: 40px;
    }
    .news-swiper > .swiper-pagination-bullets{
        bottom: 0px;
    }
    .news-date{
        width: 88px;
    }
    .news-list li{
        margin-top: 30px;
        padding: 15px 0px;
    }
    .news-listinfo{
        width: calc(100% - 88px);
        padding-left: 20px;
        padding-right: 20px;
    }
    .news-date span{
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 4px;
    }
    .news-date::after{
        height: 68px;
    }
    .news-listinfo h3 > a{
        margin-bottom: 8px;
    }
}
@media(max-width: 559px){
    .news-info{
        padding: 20px 20px 0px;
    }
    .news-top h3 > a{
        margin-bottom: 10px;
    }
    .news-top{
        padding-bottom: 10px;
    }
    .news-swiper .swiper-pagination{
        padding-left: 20px;
    }
    .news-date{
        width: 68px;
    }
    .news-listinfo{
        width: calc(100% - 68px);
        padding-left: 10px;
        padding-right: 10px;
    }
    .news-date span{
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 4px;
    }
    .news-listinfo h3 > a{
        font-size: 16px;
    }
}
.pro-wrap{
    width: 100%;
    overflow: hidden;
    padding-top: 80px;
}
.pro-leftlist ul li{
    background-color: #f0f0f4;
}
.pro-leftlist{
    border-top: 1px solid #b5b5b5;
}
.pros-leftpane{
    margin-bottom: 30px;
}
.pro-leftul li > a{
    background-color: #fff;
    padding-left: 40px;
    padding-right: 40px;
    display: block;
    width: 100%;
    line-height: 64px;
    color: #222;
    font-size: 16px;
    border-bottom: 1px solid #b5b5b5;
    background: url(../img/pro-left-arrow.png) no-repeat right 40px center;
    transition: all .5s;
}
.pro-leftul li:hover > a, .pro-leftul li.on > a{
    color: #fff;
    background-color: #00479d;
    background-image: url(../img/pro-left-down.png);
}
.sub-nav{
    padding-left: 40px;
    padding-right: 40px;
    display: none;
    padding-top: 17px;
    padding-bottom: 17px;
    background-color: #f0f0f4;
    border-bottom: 1px solid #b5b5b5;
}
.sub-nav dd a{
    color: #222;
    font-size: 16px;
    line-height: 44px;
}
.sub-nav dd a:hover{
    color: #00479d;
}

.sub-nav dd.on a{
    color: #00479d;
}

.pro-leftbom{
    background-color: #00479d;
}
.pro-leftbom h3{
    color: #fff;
}
.pro-leftbom h3 > span{
    color: #fff;
}
.pro-leftbom .twopro-hotline{
    color: #fff;
}
.pro-list{
    margin-left: -12px;
    margin-right: -12px;
}
.pro-list li{
    padding: 0 12px;
    width: 33.33%;
    float: left;
    margin-bottom: 24px;
}
.pro-list li .twopro-item{
    margin-bottom: 0px;
}
@media(max-width: 1200px){
    .pro-leftul li > a{
        padding-left: 25px;
        padding-right: 25px;
        background-position-x: right 25px;
    }
    .sub-nav{
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media(max-width: 991px){
    .pro-leftul li > a{
        line-height: 52px;
    }
    .pro-leftul{
        display: none;
    }
    .pros-leftpane{
        margin-bottom: 0px;
    }
    .pro-wrap{
        padding-top: 40px;
    }
}
@media(max-width: 767px){
    .pro-list li{
        padding: 0px;
        float: none;
        width: 100%;
    }
    .pro-list{
        margin-left: 0px;
        margin-right: 0px;
    }
}
.threepro-swiper{
    height: auto !important;
}
.three-pro{
    padding-top: 98px;
    padding-bottom: 100px;
    overflow: hidden;
}
.threepro-title{
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 48px;
}
.three-public-title{
    font-size: 48px;
    line-height: 48px;
    color: #111;
}
.three-titlelist{
    display: flex;
    margin-left: 100px;
}
.three-titlelist li{
    margin-right: 70px;
}
.three-titlelist li:last-child{
    margin-right: 0px;
}
.three-titlelist li a{
    font-size: 16px;
    color: #444;
    line-height: 24px;
}
.three-titlelist li:hover a{
    color: #00479d;
}
.threepro-btn{
    position: absolute;
    width: 110px;
    height: 45px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.threepro-btn .swiper-button-next,.threepro-btn .swiper-button-prev{
    width: 45px;
    height: 45px;
    border: 2px solid #00479d;
    margin-top: 0px;
    top: 0px;
    background-size: 9px 16px;
    opacity: 1;
}
.threepro-btn .swiper-button-next{
    right: 0px;
    background-image: url(../img/hpro-next.png);
}
.threepro-btn .swiper-button-prev{
    left: 0px;
    background-image: url(../img/hpro-prev.png);
}
.threepro-btn .swiper-button-next:hover,
.threepro-btn .swiper-button-prev:hover{
    background-color: #00479d;
}
.threepro-btn .swiper-button-next:hover{
    background-image: url(../img/hpro-next-on.png);
}
.threepro-btn .swiper-button-prev:hover{
    background-image: url(../img/hpro-prev-on.png);
}
.threepro-swiper .swiper-slide{
    height: auto !important;
}
.threepro-main{
    display: flex;
}
.threepro-left{
    width: 50%;
    padding-left: 60px;
    padding-right: 60px;
    background-color: #f0f0f4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.threepro-left h3{
    font-size: 30px;
    line-height: 30px;
    color: #000;
    padding-bottom: 28px;
    border-bottom: 2px solid #00479d;
    display: inline-block;
    margin-bottom: 22px;
}
.threepro-right{
    width: 50%;
}
.threepro-des{
    font-size: 16px;
    color: #444;
    line-height: 30px;
    margin-bottom: 22px;
}
.threepro-icon{
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.threepro-icon img{
    transition: all .5s;
}
.threepro-icon .icon-on{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.threepro-list {
    display: flex;
    margin-bottom: 55px;
}
.threepro-list li{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 40px;
}
.threepro-list li:last-child{
    margin-right: 0px;
}
.threepro-list li p{
    font-size: 16px;
    color: #444;
    line-height: 24px;
    margin-top: 8px;
}
.threepro-list li:hover .threepro-icon .icon-on{
    opacity: 1;
}
.threepro-list li:hover .threepro-icon .icon-un{
    opacity: 0;
}
.threepro-list li:hover p{
    color: #00479d;
}
@media(max-width: 1600px){
    .three-titlelist li{
        margin-right: 50px;
    }
}
@media(max-width: 1400px){
    .three-titlelist li{
        margin-right: 35px;
    }
    .three-titlelist{
        margin-left: 60px;
    }
    .threepro-left{
        padding-left: 40px;
        padding-right: 40px;
    }
    .threepro-list{
        margin-bottom: 35px;
    }
    .threepro-left h3{
        padding-bottom: 15px;
        margin-bottom: 10px;
    }
}
@media(max-width: 1200px){
    .threepro-main{
        flex-wrap: wrap;
    }
    .threepro-left{
        width: 100%;
        padding: 40px;
    }
    .threepro-right{
        width: 100%;
    }
    .three-titlelist li{
        margin-right: 15px;
    }
    .three-titlelist{
        margin-left: 20px;
    }
}
@media(max-width: 991px){
    .three-pro{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .three-public-title{
        font-size: 28px;
        margin-bottom: 8px;
        line-height: 28px;
    }
    .threepro-title{
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    .three-titlelist{
        margin-left: 0px;
        flex-wrap: wrap;
    }
    .threepro-btn{
        position: relative;
        right: auto;
        top: auto;
        margin-top: 20px;
        transform: translateY(0px);
    }
    .threepro-left{
        padding: 25px;
    }
    .threepro-left h3{
        font-size: 24px;
        line-height: 24px;
    }
    .threepro-list{
        margin-bottom: 20px;
    }
}
@media(max-width: 559px){
    .threepro-list li{
        margin-right: 20px;
    }
    .threepro-more{
        width: 120px;
        height: 44px;
        line-height: 44px;
    }
}
.about-main{
    display: flex;
    flex-wrap: wrap;
}
.threeabout-left{
    width: 50%;
}
.threeabout-right{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.threeabout-item{
    position: relative;
    width: 100%;
}
.threeabout-info{
    position: absolute;
    width: 100%;
    left: 0px;
    color: #fff;
    bottom: 0px;
    z-index: 21;
    opacity: 1;
    transition: all .5s;
}
.threeabout-info h3{
    font-size: 36px;
    color: #fff;
    line-height: 36px;
    padding-bottom: 38px;
    padding-left: 40px;
}
.threeabout-other {
    position: absolute;
    width: 100%;
    left: 0px;
    color: #fff;
    bottom: 0px;
    height: 100%;
    padding-left: 155px;
    display: flex;
    padding-right: 150px;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: all .5s;
    z-index: 22;
}
.threeabout-other h2{
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 30px;
}
.threeabout-other p{
    font-size: 16px;
    line-height: 30px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 52px;
}
.threeabout-left .threeabout-other h2{
    margin-bottom: 50px;
}
.threeabout-left .threeabout-other p{
    -webkit-line-clamp: 7;
    margin-bottom: 92px;
}
.threeabout-more{
    background-color: #fff;
    color: #00479d;
}
.threeabout-item:hover .public-img img{
    transform: scale(1.1);
}
.threeabout-item:hover .threeabout-info{
    opacity: 0;
}
.threeabout-item:hover .threeabout-other{
    opacity: 1;
}
@media(max-width: 1600px){
    .threeabout-other{
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media(max-width: 1400px){
    .threeabout-other{
        padding-left: 70px;
        padding-right: 70px;
    }
    .threeabout-other h2{
        font-size: 36px;
        line-height: 36px;
    }
    .threeabout-left .threeabout-other h2{
        margin-bottom: 30px;
    }
    .threeabout-other p{
        margin-bottom: 30px;
    }
}
@media(max-width: 1200px){
    .threeabout-other{
        padding-left: 40px;
        padding-right: 40px;
    }
    .threeabout-left .threeabout-other p{
        margin-bottom: 52px;
    }
    .threeabout-other h2{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .threeabout-more{
        width: 140px;
        height: 44px;
        line-height: 44px;
    }
    .threeabout-other p{
        margin-bottom: 15px;
    }
}
@media(max-width: 991px){
    .threeabout-left{
        width: 100%;
    }
    .about-main{
        padding: 0 15px;
    }
    .threeabout-info h3{
        font-size: 24px;
        line-height: 24px;
    }
    .threeabout-right{
        width: 100%;
    }
}
@media(max-width: 559px){
    .threeabout-info h3{
        padding-bottom: 15px;
        padding-left: 20px;
    }
    .threeabout-other{
        display: none;
    }
    .threeabout-item:hover .threeabout-info{
        opacity: 1;
    }
}
.homefwcn-w{
    margin-top: 58px;
}
.homefwcn-ul{
    display: flex;
    justify-content: space-between;
}
.homefwcn-ul li{
    width: 15.7%;
    overflow: hidden;
    transition:all 0.5s;
    position: relative;
}
.homefwcn-ul li.homefwcn-wAct{
    width: 46.4%;
}
.homefwcn-txtm p{
    display: none;
    padding-right: 30px;
}
.homefwcn-ul li.homefwcn-wAct .homefwcn-txtm p{
    display: block;
}
.homefwcn-txt{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0px;
    padding-left: 20px;
    padding-bottom: 38px;
    font-size: 24px;
    color: #fff;
    line-height: 24px;
}
.homefwcn-ul li.homefwcn-wAct .homefwcn-txt{
    padding-left: 38px;
}
@media(max-width:991px){
    .homefwcn-ul{
        display: block;
    }
    .homefwcn-ul li{
        width: 100%;
    }
    .homefwcn-ul .homefwcn-wAct{
        width: 100% !important;
    }
    .homefwcn-img img{
        width: 100%;
    }
    .homefwcn-ul li{
        margin-bottom: 20px;
    }
    .homefwcn-w{
        margin-top: 30px;
    }
    .homefwcn-txt{
        padding-bottom: 20px;
    }
    .homefwcn-ul li.homefwcn-wAct .homefwcn-txt{
        padding-left: 20px;
    }
}
.three-news{
    background-color: #f0f0f4;
}
.threenews-main{
    margin-top: 58px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.threenews-left{
    margin-right: 30px;
}
.threenews-left .public-img{
    position: relative;
}
.threenews-center{
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.threenews-item{
    flex: 1;
    position: relative;
}
.threenews-mask{
    position: absolute;
    width: 100%;
    height: 250px;
    background: url(../img/news-mask.png) no-repeat center;
    background-size: 100% 100%;
    left: 0px;
    bottom: 0px;
    color: #ffff;
    display: flex;
    align-items: flex-end;
}
.threenews-mask p{
    font-size: 18px;
    line-height: 24px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 28px;
}
.centernews-item{
    margin-bottom: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 25px;
    background-color: #fff;
}
.centernews-item h3{
    font-size: 18px;
    color: #111;
    line-height: 24px;
    margin-bottom: 6px;
    font-weight: bold;
}
.centernews-item span{
    font-size: 16px;
    color: #999;
    line-height: 24px;
}
.centernews-item p{
    font-size: 16px;
    color: #444;
    margin-top: 5px;
    line-height: 24px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.centernews-item a{
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #111;
    margin-top: 20px;
    text-transform: uppercase;
}
.centernews-item a i{
    display: block;
    width: 15px;
    height: 10px;
    background: url(../img/news-more.png) no-repeat center;
    background-size: 100% 100%;
    margin-left: 8px;
    transition: all .5s;
}
.centernews-item:last-child{
    margin-bottom: 0px;
}
.centernews-item:hover a{
    color: #00479d;
}
.centernews-item:hover a i{
    background-image: url(../img/news-more-on.png);
    transform: translateX(5px);
}
.threenews-left:hover .public-img img{
    transform: scale(1.1);
}
.rightnews-item{
    padding-left: 25px;
    padding-right: 25px;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rightnews-item h3>a{
    font-size: 18px;
    color: #111;
    line-height: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}
.rightnews-item p{
    font-size: 16px;
    color: #444;
    line-height: 24px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.threenews-swiper .swiper-slide{
    height: 104px !important;
    display: flex;
}
.threenews-swiper{
    height: 446px;
    overflow: hidden;
}
.rightnews-item:hover h3>a{
    color: #00479d;
}
@media(max-width: 1200px){
    .threenews-item{
        flex: none;
        width: calc(50% - 15px);
        margin-right: 0px;
    }
}
@media(max-width: 991px){
    .threenews-item{
        width: 100%;
        margin-bottom: 25px;
    }
    .threenews-item:last-child{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .threenews-main{
        margin-top: 25px;
    }
    .centernews-item{
        padding: 20px;
        margin-bottom: 20px;
    }
    .rightnews-item{
        width: 100%;
    }
}
@media(max-width: 559px){
    .rightnews-item{
        padding-left: 15px;
        padding-right: 15px;
    }
    .threenews-mask p{
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
}



/*首页工程案例*/
/* .onecase-wswiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;


    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
    transform: scale(0.8);
  }
  .onecase-wswiper .swiper-slide-active,.swiper-slide-duplicate-active{
    transform: scale(1);
  }

  .onecase-wswiper .swiper-slide  img{
      width: 100%;
  } */


.onecase-wswiper .swiper-slide{
    opacity: 0.5;
    position: relative;

}
.onecase-wswiper .swiper-slide.swiper-slide-active{
    opacity: 1;
}


.onecase-wswiper .swiper-slide span{
    display: block;
    position: absolute;
    left: 50%;
    color: #fff;
    z-index: 66;
    bottom: 35px;
    font-size: 24px;
    transform: translateX(-50%);
}
.onecase-wswiper .swiper-slide img{
    width: 100%;
}
.onecase-wswiper .swiper-slide span{
    display: none;
}
.onecase-wswiper .swiper-slide.swiper-slide-active{
    opacity: 1;
}
.onecase-wswiper .swiper-slide.swiper-slide-active span{
    display: block;
}


.onecase-wbox .swiper-button-prev{
    background: url('../img/case-prev.png') no-repeat center;
    width: 60px;
    height: 60px;
    border: 2px solid #00479d;
    border-radius: 50%;
    left: -140px;
}
.onecase-wbox .swiper-button-next{
    background: url('../img/case-next.png') no-repeat center;
    width: 60px;
    height: 60px;
    border: 2px solid #00479d;
    border-radius: 50%;
    right: -140px;
}
.onecase-wbox{
    position: relative;
}

@media(max-width:1700px){
    .onecase-wbox .swiper-button-prev{
        left: -80px;
    }
    .onecase-wbox .swiper-button-next{
        right: -80px;
    }

}
@media(max-width:1400px){
    .onecase-wswiper .swiper-slide span{
        font-size: 18px;
        bottom: 10px;
    }
    .onecase-wbox .swiper-button-prev{
        left: 20px;
    }
    .onecase-wbox .swiper-button-next{
        right: 20px;
    }

}
@media(max-width:991px){
    .onecase-wswiper .swiper-slide span{
        font-size: 16px;
        bottom: 8px;
        white-space: nowrap;
    }
    .one-case .one-title{
        margin-bottom: 30px;
    }
    .onecase-wbox .swiper-button-prev{
        width: 45px;
        height: 45px;
    }
    .onecase-wbox .swiper-button-next{
        width: 45px;
        height: 45px;
    }
}

.dc-phone {
    display: none;
}
@media (max-width: 991px) {
    .dc-phone {
        display: block;
    }

    .dc-pc {
        display: none;
    }
}
/* 联系我们 */
.contact-main{
    padding-bottom: 60px;
}
.contact-cont{
    overflow: hidden;
}
.contact-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f3f3f3;
    justify-content: center;
}
.contact-info dl dt{
    font-size: 24px;
    color: #003f88;
    margin-bottom: 25px;
}
.contact-info dl dd{
    line-height: 30px;
    color: #666;
    font-size: 16px;
}
.contact-img{
    overflow: hidden;
    width: 100%;
}
.contact-img img{
    display: block;
    width: 100%;
}
.contact-ditu{
    margin-top: 28px;
    overflow: hidden;
    width: 100%;
}
.contact-ditu img{
    display: block;
    width: 100%;
}
@media(max-width: 1200px){
    .contact-info dl dt{
        margin-bottom: 15px;
    }
}
@media(max-width: 991px){
    .col-xxs-12{
        width:100%;
    }
    .contact-info{
        padding: 30px 0px;
        margin-bottom: 15px;
    }
    .contact-main{
        padding-bottom: 40px;
    }
}
@media(max-width: 599px){
    .contact-main{
        padding-bottom: 30px;
    }
    .contact-ditu{
        margin-top: 15px;
    }
}

.about-dess{
    margin-bottom: 50px;
}
.about-dess img{
    max-width: 100%;
}


@media(max-width:991px){
    .inav-left{
        display: none;
    }
    .inav-leftshow{
        display: block;
    }
}